From: Jeroen van der Heijden Date: Wed, 10 Oct 2018 07:57:36 +0000 (+0200) Subject: Changed to NDEBUG flag for release X-Git-Tag: archive/raspbian/2.0.44-1+rpi1~1^2~3^2~8^2~18 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=a83ab6b95378db057242f535de0beeee4f19d4b8;p=siridb-server.git Changed to NDEBUG flag for release --- diff --git a/include/siri/version.h b/include/siri/version.h index 2c08fcf8..3967a0fd 100644 --- a/include/siri/version.h +++ b/include/siri/version.h @@ -21,7 +21,7 @@ * This should be an empty string when building a final release. * Examples: "-alpha-0" "-alpha-1", "" */ -#define SIRIDB_VERSION_PRE_RELEASE "-alpha-0" +#define SIRIDB_VERSION_PRE_RELEASE "-alpha-1" #ifndef NDEBUG #define SIRIDB_VERSION_BUILD_RELEASE "+debug" diff --git a/itest/Dockerfile b/itest/Dockerfile index 70ad619a..005b24b1 100644 --- a/itest/Dockerfile +++ b/itest/Dockerfile @@ -12,7 +12,7 @@ COPY ./include/ ./include/ COPY ./Release/ ./Release/ RUN cd ./Release && \ make clean && \ - make + CFLAGS="-Werror -std=gnu89" make FROM python RUN apt-get update && \